home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / yocontra / form4.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-01-27  |  2.4 KB  |  84 lines

  1. VERSION 5.00
  2. Begin VB.Form Form4 
  3.    Caption         =   "Delete Icon"
  4.    ClientHeight    =   2175
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form4"
  9.    ScaleHeight     =   2175
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox Text1 
  13.       Height          =   285
  14.       Left            =   720
  15.       TabIndex        =   4
  16.       Top             =   840
  17.       Width           =   495
  18.    End
  19.    Begin VB.CommandButton Command1 
  20.       Caption         =   "&OK"
  21.       Height          =   615
  22.       Left            =   120
  23.       TabIndex        =   3
  24.       Top             =   1440
  25.       Width           =   1335
  26.    End
  27.    Begin VB.CommandButton Command2 
  28.       Caption         =   "&Cancel"
  29.       Height          =   615
  30.       Left            =   1560
  31.       TabIndex        =   2
  32.       Top             =   1440
  33.       Width           =   1455
  34.    End
  35.    Begin VB.CommandButton Command3 
  36.       Caption         =   "&About"
  37.       Height          =   615
  38.       Left            =   3120
  39.       TabIndex        =   1
  40.       Top             =   1440
  41.       Width           =   1455
  42.    End
  43.    Begin VB.Label Label2 
  44.       Caption         =   "ID:"
  45.       Height          =   255
  46.       Left            =   240
  47.       TabIndex        =   5
  48.       Top             =   840
  49.       Width           =   375
  50.    End
  51.    Begin VB.Label Label1 
  52.       Alignment       =   2  'Center
  53.       Caption         =   "Delete Icon"
  54.       BeginProperty Font 
  55.          Name            =   "MS Sans Serif"
  56.          Size            =   24
  57.          Charset         =   0
  58.          Weight          =   400
  59.          Underline       =   0   'False
  60.          Italic          =   0   'False
  61.          Strikethrough   =   0   'False
  62.       EndProperty
  63.       Height          =   495
  64.       Left            =   0
  65.       TabIndex        =   0
  66.       Top             =   0
  67.       Width           =   4575
  68.    End
  69. Attribute VB_Name = "Form4"
  70. Attribute VB_GlobalNameSpace = False
  71. Attribute VB_Creatable = False
  72. Attribute VB_PredeclaredId = True
  73. Attribute VB_Exposed = False
  74. Private Sub Command1_Click()
  75. Form1.YoconTray1.DeleteIcon CInt(Text1.Text)
  76. Unload Form4
  77. End Sub
  78. Private Sub Command2_Click()
  79. Unload Form4
  80. End Sub
  81. Private Sub Command3_Click()
  82. Form1.YoconTray1.AboutBox
  83. End Sub
  84.